home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 009 / eqpat01.arc / MATHBLAS.DOC < prev    next >
Encoding:
Text File  |  1987-01-19  |  1.4 KB  |  40 lines

  1. Math  Blaster  is  an educational game produced by  Davidson  and 
  2. associates  in  Torrance Calif.   It works well with  the  entire 
  3. Equity series except the Equity 1 running color mode.   The large 
  4. numbers  that  Math  Blaster places on the  screen  are  done  in 
  5. graphics  mode.   These numbers appear as square blocks of garble 
  6. on the Equity 1 color screen.
  7.  
  8. Unlike the GWBASIC used on the Equity II and III, GWBASIC for the 
  9. Equity   1  does  not  initialize  certain  memory   areas.    In 
  10. particular, area 510 of segment 0 is not initialized(this area is 
  11. used by BASIC to hold the default data segment value).  
  12.  
  13. Tests  have been run on ROM BIOS versions 2.1i, 2.20  and 2.21. 
  14. The  following  programs have proved to be an effective  fix  for 
  15. cases tested so far:
  16.  
  17. For hard disk versions:
  18.  
  19. 10 PRINT " This patch will not work with config.sys files"
  20. 20 DEF SEG =0
  21. 30 POKE &H510,&HC9
  22. 40 POKE &H511,&H14
  23. 50 RUN "color
  24.  
  25.  
  26. For Floppy disk versions.
  27.  
  28. 10 DEF SEG =0
  29. 20 PRINT "this is a fix for the floppy disk system"
  30. 30 PRINT "make sure no CONFIG.sys file is active"
  31. 40 PRINT "try this version on floppy systems"
  32. 50 POKE &H510,&HC3
  33. 60 POKE &H511,&H14
  34. 70 RUN "color
  35.  
  36. CONFIG.SYS and AUTOEXEC.BAT move things around in memory.   These 
  37. patch  programs will not work if either of these two programs are 
  38. activated on boot up.
  39.  
  40.